This element contains a list of objects that need to be saved when the application quits, or when the user interface is closed. It can be created anywhere inside the skin, and repeated as many times as you whish. Any new object identifier will be added to the list of parameters to be saved.
None
| Name | Value Type | Default Value | Description | Comment | V. |
|---|---|---|---|---|---|
|
object_ids |
';' separated param identifiers |
Empty. |
List of identifiers of objects to be declared as persistent. |
|
1.2 |
The following example creates a single parameter handling the gain of the plug-in, and declares it as persistent, so that it will be saved when the application quits, or when the user interface is closed:
<?xml version="1.0" encoding="utf-8" ?> <SKIN language_version="1.1"> <PARAM name="gain" default="0" max="20" min="-20" unit="dB" comment="gain of the plug-in" /> <PERSISTENT_OBJECTS object_ids="gain" /> </SKIN>